You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let script = hex::decode("04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73").unwrap();
let script = "04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73";
50
+
assert_eq!(
51
+
hex::decode(script).unwrap(),
52
+
genesis.txdata[0].input[0].script_sig.as_bytes()
53
+
);
54
+
assert!(script.contains(
55
+
hex::encode(
56
+
"The Times 03/Jan/2009 Chancellor on brink of second bailout for banks".as_bytes()
0 commit comments